home *** CD-ROM | disk | FTP | other *** search
- Path: news.cencom.net!ns!tanp
- From: tanp@ns (Bill Wendling)
- Newsgroups: comp.lang.c
- Subject: Re: code inline
- Date: 19 Jan 1996 07:57:36 GMT
- Organization: Cen-Com Internet
- Message-ID: <4dnitg$1u8@news.cencom.net>
- References: <letz-1801962202300001@macsteph.grame.fr>
- NNTP-Posting-Host: ns.cencom.net
- X-Newsreader: TIN [version 1.2 PL2]
-
- stephane Letz inexplicably wrote:
-
- } Is there any way to directly inline hexadecimal assembly code
- } using Borland 4.5? (that is without using TASM32)
-
- I believe that Borland allows you to specify assembly instructions with
- the asm keyword. You can use it like this:
-
- asm {
- mov ax, 05
- int 21
- }
-
- or
-
- asm mov ax, 05
- asm int 21
-
-
- --
- Bill Wendling | "Pinky, are you thinking what I'm thinking?"
- tanp@ns.cencom.net | "I think so, Brain, but burlap chafes me so."
- "Boom Shanka" | Finger me for my Geek Code...NOW!
-